home *** CD-ROM | disk | FTP | other *** search
/ Apple Developer Connection Student Program / ADC Tools Sampler CD Disk 3 1999.iso / Apple Development Tools / ToolServer 3.4.1.sit / ToolServer 3.4.1 / MWStartup < prev    next >
Text File  |  1993-07-20  |  1KB  |  50 lines

  1. #    MWStartup
  2. #    July 20, 1993
  3. #    ©Copyright 1993 by metrowerks inc. All rights reserved.
  4.  
  5. #    This script is invoked by the Metrowerks development environment when it
  6. #    establishes the ToolServer connection. It should reside in the same
  7. #    folder as ToolServer.
  8.  
  9. #############################################################################
  10.  
  11. #    The commands in this section MUST NOT BE ALTERED, or the link between
  12. #    the Metrowerks Environment and ToolServer will not function correctly.
  13.  
  14. Export MWNBPObj
  15. Export MWNBPType
  16. Export MWNBPZone
  17. Export MWPPCPortName
  18. Export MWPPCClientName
  19. Export MWIsRemote
  20. Export MWExists
  21.  
  22. unalias File
  23.  
  24. if `Exists "{MPW}"Scripts:File` == ""
  25.     echo '### The "File" command may not work properly, because the'
  26.     echo '### "File" script is missing from your Scripts folder.'
  27.     echo
  28.     echo '### Also make sure that you have installed the custom "Line"'
  29.     echo '### script in your Scripts folder.'
  30.     
  31.     alias File Target
  32. end
  33.  
  34. if `Exists "{MPW}"Tools:RMetrowerks` == ""
  35.     echo
  36.     echo '### The "RMetrowerks" tool is missing from your Tools folder.'
  37.     echo '### Until you install it, the File and Line commands will'
  38.     echo '### not work.'
  39.     echo
  40.     echo '### Also make sure that you install the custom File and Line'
  41.     echo '### scripts in your Scripts folder'
  42. end
  43.  
  44. For __Startup__i in `(Files "{ShellDirectory}"MWStartup•≈ || Set Status 0) ≥ dev:null`
  45.     Execute "{__Startup__i}"
  46. End
  47. Unset __Startup__i
  48.  
  49. #############################################################################
  50.